/* 
   Premium Mobile-First CSS Architecture 
   AluBalustrady - Enterprise Edition
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@300;400;600;700&display=swap');

:root {
  /* Color Palette - Deep Graphite, White, Brushed Aluminum, Copper Accent */
  --bg-color: #f8fafc;
  --surface-color: #ffffff;

  --text-main: #1e293b;
  --text-muted: #64748b;

  /* Accent Colors */
  --accent: #d4af37;
  /* Metallic Gold/Copper */
  --accent-light: #f3e5ab;
  --accent-dark: #b8860b;
  --accent-grad: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark));

  /* Dark Mode Palette Overlay */
  --dark-bg: #0f172a;
  /* Deep Graphite */
  --dark-surface: #1e293b;
  --border-light: #e2e8f0;

  /* Typography */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;

  /* Spacing */
  --container-px: 1.5rem;
  --section-py: 6rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Soft Box Shadows (Premium UI) */
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
  --shadow-hover: 0 25px 50px -12px rgb(0 0 0 / 0.15);
  --shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.4);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark-bg);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
}

p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
  scroll-margin-top: 6rem;
}

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

.text-accent {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-grad);
  color: var(--dark-bg);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(212, 175, 55, 0.6);
  color: white;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Header & Glassmorphism Navigation */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  padding: 0.25rem 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark-bg);
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--dark-bg);
  color: var(--accent);
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.logo-text-muted {
  font-weight: 300;
  color: var(--text-muted);
  font-size: 1.25rem;
}

.burger {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--dark-bg);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.nav-menu {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
  padding-top: 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: color-dodge;
  filter: contrast(1.1) brightness(0.9);
  transition: transform 10s ease-out;
}

.hero:hover .hero-bg {
  transform: scale(1.05);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(15, 23, 42, 1) 0%,
      rgba(15, 23, 42, 0.6) 50%,
      rgba(15, 23, 42, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.kicker {
  display: inline-flex;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent-light);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero p {
  color: #cbd5e1;
  font-size: 1.25rem;
  max-width: 650px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Grids */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 2rem;
}

/* Cards Styling - Premium Soft UI */
.card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 175, 55, 0.3);
}

.card-img-wrapper {
  height: 250px; /* Stała wysokość dla wyrównania kart */
  overflow: hidden;
  position: relative;
}

.card-img-wrapper picture, 
.card-img-wrapper img,
.gallery-item picture,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-img {
  transform: scale(1.08);
}

.card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: auto;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.card-list i {
  color: var(--accent);
  margin-top: 0.25rem;
  font-size: 1.25rem;
}

/* Why Section / Feature Boxes */
.why-section {
  background: #ffffff;
}

.why-box {
  background: var(--bg-color);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.why-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  transition: var(--transition-smooth);
}

.why-item:hover {
  transform: translateX(10px);
}

.why-item:last-child {
  margin-bottom: 0;
}

.why-icon {
  width: 4rem;
  height: 4rem;
  background: #ffffff;
  color: var(--accent);
  border-radius: 1rem;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.why-item:hover .why-icon {
  background: var(--accent);
  color: #ffffff;
  transform: rotate(5deg) scale(1.1);
}

/* Photo Gallery & Lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: grid;
  place-items: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 2.5rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Reviews */
.reviews-section {
  background: var(--bg-color);
}

.review-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.review-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-main);
}

/* FAQ Details */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

details {
  background: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

details[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark-bg);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '\F64D';
  /* Bootstrap Icon Plus */
  font-family: "bootstrap-icons";
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s;
}

details[open] summary::after {
  content: '\F2EA';
  /* Bootstrap Icon Dash */
  transform: rotate(180deg);
}

details p {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Contact Section & Form */
.contact-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, rgba(15, 23, 42, 0) 50%);
  pointer-events: none;
}

.contact-section h2 {
  color: #ffffff;
}

.contact-section p {
  color: #94a3b8;
}

.contact-wrapper {
  display: grid;
  gap: 4rem;
  background: var(--dark-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.contact-info ul {
  list-style: none;
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
}

.contact-info li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-info li div {
  color: #cbd5e1;
}

.contact-info i {
  color: var(--accent);
  font-size: 1.75rem;
}

.contact-info strong {
  display: block;
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.contact-tel {
  font-size: 1.25rem;
  color: #ffffff !important;
  font-weight: 700;
  transition: color 0.3s;
}

.contact-tel:hover {
  color: var(--accent) !important;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #cbd5e1;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder {
  color: #64748b;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 1.5rem;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 0.25rem;
  accent-color: var(--accent);
  width: 1.25rem;
  height: 1.25rem;
}

.form-checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  font-size: 1.15rem;
  padding: 1.25rem;
  margin-top: 1rem;
}

/* Lightbox Dialog HTML5 */
dialog.lightbox {
  padding: 0;
  border: none;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

dialog.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lb-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  font-size: 1.5rem;
  z-index: 10;
}

.lb-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  color: var(--accent);
}

.lb-close {
  top: 2rem;
  right: 2rem;
}

.lb-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Footer */
footer {
  background: #0b0f19;
  color: #64748b;
  padding: 5rem 0 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #ffffff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  color: var(--accent);
  width: 2.25rem;
  height: 2.25rem;
}

.footer-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-details {
  font-style: normal;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.footer-details a {
  transition: color 0.3s;
}

.footer-details a:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-links a {
  color: #94a3b8;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

/* Sticky Mobile CTA */
.sticky-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  display: flex;
  gap: 0.75rem;
  z-index: 90;
}

.sticky-mobile a {
  flex: 1;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-mobile a.primary {
  background: var(--accent-grad);
  border: none;
  color: var(--dark-bg);
  box-shadow: var(--shadow-gold);
}

/* Responsive Rules */
@media (min-width: 768px) {
  .hero-ctas {
    flex-direction: row;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1.2fr 1fr;
    padding: 4rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .sticky-mobile {
    display: none;
  }

  .hero-gradient {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0) 100%);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .burger {
    display: none;
  }

  .nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }

  .nav-menu a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
  }

  /* Navigation Hover Effect */
  .nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
  }

  .nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
  }

  .nav-menu .nav-cta {
    padding: 0.75rem 1.75rem;
    background: var(--dark-bg);
    color: #ffffff;
    border-radius: 999px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
  }

  .nav-menu .nav-cta:hover {
    background: #ffffff;
    color: var(--dark-bg);
    border-color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
}

/* Mobile Menu Active State */
.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid var(--border-light);
  gap: 1.5rem;
}

.nav-menu.active a {
  font-size: 1.25rem;
}

.nav-menu.active .nav-cta {
  background: var(--accent-grad);
  color: var(--dark-bg);
  padding: 1rem;
  text-align: center;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}