/*------------------------------------------------------
  CSS RESET & BASELINE
------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  color: #18191A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2C3A47;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #BFA96A;
  outline-offset: 2px;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border-radius: 4px;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
}
ul, ol {
  list-style-position: inside;
}

/*------------------------------------------------------
  COLOR PALETTE & UTILS
------------------------------------------------------*/
:root {
  --primary: #18191A;
  --secondary: #2C3A47;
  --accent: #F8F6F2;
  --highlight: #BFA96A;
  --midgray: #888;
  --border: #e5e5e5;
  --shadow: 0 6px 16px rgba(44,58,71,0.12);
  --radius: 10px;
  --radius-sm: 5px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
  --focus: #BFA96A;
}

/*------------------------------------------------------
  TYPOGRAPHY
------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  color: #18191A;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.8rem; margin-bottom: 18px; letter-spacing: -1.5px; }
h2 { font-size: 2rem; margin-bottom: 14px; letter-spacing: -0.5px; }
h3 { font-size: 1.375rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; }
p, ul, ol { font-size: 1rem; margin-bottom: 16px; color: #232323; }
strong, b { font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
}

/*------------------------------------------------------
  LAYOUT CONTAINERS
------------------------------------------------------*/
.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

@media (max-width: 768px) {
  .section, section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}

/*------------------------------------------------------
  HEADER & NAVIGATION
------------------------------------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 110;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 70px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  display: block;
  height: 46px;
  width: auto;
}
@media (max-width: 480px) {
  .logo img { height: 32px; }
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.5px;
  position: relative;
  padding: 2.5px 2.5px;
  border-radius: 3px;
  transition: color var(--transition);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--highlight);
  background: var(--accent);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  padding: 0 7px;
  border-radius: 7px;
  line-height: 1;
  transition: background .15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent);
}

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/*-----------------------------
  MOBILE SLIDE MENU
------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 28, 30, 0.91);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform .35s var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 0 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #fff;
  margin-left: 20px;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(191,169,106,0.13);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  width: 100%;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.22rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 10px 0 9px 4px;
  border-radius: 7px;
  width: fit-content;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/*------------------------------------------------------
  HERO SECTIONS
------------------------------------------------------*/
.hero {
  background: linear-gradient(110deg, #fff 90%, #e5e5e5 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 250px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.hero .container {
  min-height: 250px;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  color: var(--primary);
}

/*------------------------------------------------------
  BUTTONS
------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #FAFAFA;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 32px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 7px rgba(44,58,71, 0.08);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform .16s;
}
.btn.primary {
  background: var(--primary);
  color: #fff;
}
.btn.primary:hover,
.btn.primary:focus {
  background: var(--highlight);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 4px 17px rgba(44,58,71,0.15);
}
.btn:active {
  background: var(--secondary);
  color: #fff;
}

/*------------------------------------------------------
  SECTION: FEATURES
------------------------------------------------------*/
.features .content-wrapper {
  gap: 32px;
}

.feature-grid,
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.feature-grid li,
.category-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 3px rgba(44,58,71,0.07);
  padding: 14px 18px;
  font-weight: 500;
  font-size: 1.09rem;
  min-width: 220px;
  min-height: 48px;
}
.feature-grid img,
.category-list img {
  width: 30px;
  height: 30px;
}

.category-list li {
  background: #fff;
  color: var(--secondary);
}

.category-filters {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 7px rgba(44,58,71, 0.08);
  color: var(--primary);
  font-weight: 500;
}
.category-filters img {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .feature-grid, .category-list { flex-direction: column; gap: 14px; }
  .category-filters { gap: 9px; padding: 8px 10px; }
}

/*-------------------
  SECTION: SERVICES
--------------------*/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.service-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 28px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 250px;
  transition: box-shadow .22s, transform .16s;
  border: 1.5px solid #ececec;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 6px 24px rgba(44,58,71,0.17);
  transform: translateY(-4px) scale(1.012);
  border-color: var(--highlight);
}
.service-item .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--highlight);
  font-weight: 700;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .service-list { flex-direction: column; gap: 16px; }
  .service-item { max-width: 100%; }
}

/*-------------------
  BENEFIT CARDS (SLUZBY)
--------------------*/
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 25px;
  min-width: 180px;
  max-width: 270px;
  flex: 1 1 180px;
  border: 1.5px solid #ececec;
  transition: border-color .2s, box-shadow .2s, transform .16s;
}
.benefit-item:hover {
  box-shadow: 0 6px 24px rgba(44,58,71,0.17);
  border-color: var(--highlight);
  transform: translateY(-3px) scale(1.01);
}
.benefit-item img {
  width: 32px;
  height: 32px;
}
.benefit-item h3 {
  font-size: 1.13rem;
}

@media (max-width: 900px) {
  .benefits-grid { flex-direction: column; gap: 16px; }
  .benefit-item { max-width: 100%; }
}

/*----------------------
  ABOUT & TEXT BLOCKS
----------------------*/
.about .content-wrapper p, 
.features .content-wrapper ul li, 
.section .content-wrapper p {
  color: #222;
  font-size: 1.05rem;
}

/*----------------------
  PRODUCT LIST (KNIHY)
----------------------*/
.product-list .book-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.book-item {
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 19px 22px 19px 22px;
  margin-bottom: 20px;
  min-width: 210px;
  max-width: 280px;
  flex: 1 1 220px;
  box-shadow: 0 3px 13px rgba(44,58,71,0.07);
  border: 1.5px solid #ececec;
  transition: border-color .21s, box-shadow .18s, transform .14s;
}
.book-item:hover {
  border-color: var(--highlight);
  box-shadow: 0 7px 20px rgba(44,58,71,0.15);
  transform: translateY(-3px) scale(1.008);
}
.book-item h3 {
  font-size: 1.07rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
}
.book-item .author {
  color: var(--secondary);
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.book-item .price {
  color: var(--highlight);
  font-weight: 700;
  font-size: 1.08rem;
}
.book-item button {
  margin-top: 6px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 21px;
  font-size: 0.99rem;
  border: none;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: background .18s, color .18s, transform .14s;
}
.book-item button:hover, .book-item button:focus {
  background: var(--highlight);
  color: var(--primary);
  transform: scale(1.04);
}
@media (max-width: 800px) {
  .product-list .book-grid { flex-direction: column; gap: 13px; }
  .book-item { max-width: 100%; }
}

/*------------------------
  CTA SECTION
------------------------*/
.cta {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #fff;
}
.cta h2 {
  color: #fff;
}
.cta .btn {
  margin-top: 18px;
  background: #fff;
  color: var(--primary);
}
.cta .btn:hover, .cta .btn:focus {
  background: var(--highlight);
  color: var(--secondary);
}

/*------------------------
  TESTIMONIALS/REVIEWS
------------------------*/
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 5px 22px rgba(44,58,71, 0.09);
  padding: 20px 28px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 240px;
  border: 1.5px solid #dedede;
  transition: box-shadow .22s, border-color .20s, transform .17s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 12px 34px rgba(44,58,71,0.19);
  border-color: var(--highlight);
  transform: translateY(-4px) scale(1.014);
}
.testimonial-card p {
  color: #222;
  font-size: 1.01rem;
  font-style: italic;
  margin-bottom: 9px;
}
.testimonial-card .author {
  color: var(--secondary);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 800px) {
  .testimonials .content-wrapper { flex-direction: column; gap: 10px; }
  .testimonial-card { max-width: 100%; }
}

/*--------------------
  POST PREVIEWS (blog)
--------------------*/
.post-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post-preview {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 3px 13px rgba(44,58,71,0.07);
  border: 1.5px solid #ececec;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 370px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .17s, box-shadow .15s;
}
.post-preview:hover {
  border-color: var(--highlight);
  box-shadow: 0 7px 21px rgba(44,58,71,0.16);
}
@media (max-width: 900px) {
  .post-list .content-wrapper { flex-direction: column; gap: 10px; }
  .post-preview { max-width: 100%; }
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 17px;
}
.tag-cloud span {
  display: inline-flex;
  background: var(--accent);
  color: var(--secondary);
  border-radius: 11px;
  padding: 4px 16px;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: 0.1px;
}
.topics-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/*---------------------
  GRID-BASED CONTENTS
---------------------*/
.card-container, .book-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow);
  padding: 20px 28px;
  border: 1.5px solid #ececec;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow .18s, border-color .18s, transform .16s;
}
.card:hover {
  box-shadow: 0 10px 32px rgba(44,58,71,0.14);
  border-color: var(--highlight);
  transform: translateY(-3px) scale(1.009);
}
@media (max-width: 900px) {
  .card-container { flex-direction: column; gap: 10px; }
}

/*----------------------
  ADDITIONAL CONTENT FLEX
----------------------*/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid { flex-direction: column; gap: 9px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/*--------------------------
  CONTACT SECTION & FORM
--------------------------*/
.contact-section .content-wrapper,
.form-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.06rem;
  color: #252525;
}
.contact-details img {
  width: 19px;
  height: 19px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
  width: 100%;
  max-width: 380px;
}
.form-field label {
  color: #2C3A47;
  font-weight: 500;
  font-size: 1.01rem;
}
input[type="text"], input[type="email"], textarea {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #c9c9c9;
  font-size: 1rem;
  color: var(--secondary);
  background: #fafbfc;
  transition: border-color .17s;
}
input:focus, textarea:focus {
  border-color: var(--highlight);
}
form button[type="submit"] {
  margin-top: 8px;
}

/*--------------------------------------------------
  FOOTER
--------------------------------------------------*/
footer {
  background: var(--secondary);
  color: #fff;
  padding: 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 38px 20px 18px 20px;
}
.footer-logo img {
  height: 38px;
  width: auto;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #fff;
  font-size: .99rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  opacity: 0.87;
  transition: color 0.18s, opacity .18s;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--highlight); opacity: 1; }
.footer-contact p, .footer-contact a { color: #eee; font-size: .97rem; opacity: .84; }
.footer-contact a:hover { color: var(--highlight); }
.footer-copy {
  color: #bfbfbf;
  font-size: .91rem;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 8px;
}
@media (max-width: 650px) {
  footer .container { padding: 32px 8px 13px 8px; gap: 14px; }
  .footer-nav { gap: 12px; flex-wrap: wrap; }
}

/*-----------------------------------------------------
  COOKIE CONSENT BANNER
-----------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #222;
  color: #fff;
  box-shadow: 0 -2px 32px rgba(44,58,71,0.11);
  z-index: 3000;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .32s, opacity .19s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #fff;
  font-size: 1.02rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner .btn {
  background: var(--accent);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 0.96rem;
  font-weight: 500;
  box-shadow: none;
  border: none;
  min-width: 110px;
  transition: background .15s, color .15s;
}
.cookie-banner .btn.accept {
  background: var(--highlight);
  color: var(--primary);
}
.cookie-banner .btn.reject {
  background: #fff;
  color: var(--secondary);
}
.cookie-banner .btn.settings {
  background: #222;
  color: #fff;
  border: 1px solid var(--highlight);
}
.cookie-banner .btn:hover, .cookie-banner .btn:focus {
  opacity: 0.92;
  background: var(--highlight);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner { padding: 15px 6px; gap: 7px; }
  .cookie-banner .cookie-actions { gap: 9px; }
}
/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,33,39,0.50);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius);
  min-width: 288px;
  max-width: 95vw;
  box-shadow: 0 13px 45px rgba(44,58,71,0.19);
  padding: 36px 32px 27px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalPop .24s cubic-bezier(.6,0,.5,1);
}
@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--highlight);
  width: 22px;
  height: 22px;
  margin-right: 7px;
}
.cookie-modal .btn {
  align-self: flex-end;
  margin-top: 7px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 14px;
  background: none;
  color: var(--secondary);
  font-size: 1.4rem;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .13s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #f1f1ec;
}

@media (max-width: 500px) {
  .cookie-modal { padding: 20px 8px 12px 8px; min-width: 0; }
}

/*------------------------------------------------------
  MISCELLANEOUS
------------------------------------------------------*/
::-webkit-scrollbar { width: 9px; background: #e9e9e9; }
::-webkit-scrollbar-thumb { background: #bfbfbf; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #2C3A47; }

hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 32px 0;
}

/* CLASSIC UTILITY ADDITIONS */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }
.d-none { display: none !important; }

/* FORMS: ERROR/FOCUS VISIBILITY */
input:invalid, textarea:invalid {
  border-color: #d93240;
}

/*------------------------------------------------------
  ANIMATIONS & MICROINTERACTIONS
------------------------------------------------------*/
.btn, .service-item, .book-item, .testimonial-card, .post-preview, .card {
  transition: box-shadow .18s, border-color .17s, background .16s, color .16s, transform .14s;
}

/*------------------------------------------------------
  ACCESSIBLE HIDDEN
------------------------------------------------------*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
